DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / IndexCollection<T> Class / Find Method / Find(LambdaExpression) Method
Key selector expression of an index, see IndexDefinition<T>.KeySelector.

In This Topic
    Find(LambdaExpression) Method
    In This Topic
    Finds an index in the collection by its key selector.
    Syntax
    'Declaration
     
    Public Overloads Shadows Function Find( _
       ByVal keySelector As LambdaExpression _
    ) As Index(Of T)
    public new Index<T> Find( 
       LambdaExpression keySelector
    )

    Parameters

    keySelector
    Key selector expression of an index, see IndexDefinition<T>.KeySelector.

    Return Value

    An index with the given key selector, if it is found; otherwise, null.
    See Also